home *** CD-ROM | disk | FTP | other *** search
/ Webster's Millennium Amer…Sign Language Dictionary / ASL.ISO / mac / SKILLS.dir / 00056_Script_previous test clk script < prev    next >
Text File  |  2001-09-05  |  468b  |  15 lines

  1. on mouseDown
  2.   global gDataType,gDataSource,gHistoryData,gUserData
  3.   set gHistoryData = []
  4.   
  5.   set Data = [[],[]]
  6.   if gDataType = "signs" then
  7.     set the itemDelimiter to "*"
  8.     put item 14 of gUserdata into pTest
  9.     set the itemDelimiter to ","
  10.     do "set Data = "&pTest
  11.     set gHistoryData = getAt(Data,1)
  12.     set gDataSource = "previous test"
  13.   end if
  14.   if count(gHistoryData) = 0 then set gDataSource = "entire dictionary" --"all sessions"
  15. end